home *** CD-ROM | disk | FTP | other *** search
/ PC Media 4 / PC MEDIA CD04.iso / share / prog / int32 / makefile < prev    next >
Encoding:
Makefile  |  1994-07-23  |  397 b   |  25 lines

  1. LIB_DEP    =     PFXi32t.obj    \
  2.         PFXint32.obj
  3.  
  4. #DEBUG    = -v
  5.  
  6. all:    int32.lib
  7.  
  8. i32t.obj:    i32t.asm
  9.     tasm32 /ml /m2 i32t
  10.  
  11. int32.obj:    int32.c
  12.     bcc32 -WX -c -w $(DEBUG) int32.c
  13.  
  14. int32.lib:    $(LIB_DEP:PFX=)
  15.     tlib int32.lib @&&|
  16. $(LIB_DEP:PFX=-+)
  17. |
  18.  
  19. test:    int32.lib t.obj
  20.     tlink32 /ax $(DEBUG) /Lc:\bc4\lib c0x32 t,t,,int32 dpmi32 cw32 import32
  21.  
  22. t.obj:    t.c
  23.     bcc32 -WX -c -w $(DEBUG) t.c
  24.  
  25.